We don't need to add .view - its already added, and shouldn't
really be needed in the first place.
pixmap_width, pixmap_height);
cr = cairo_create (surface);
- gtk_style_context_save (style_context);
- gtk_style_context_add_class (style_context, GTK_STYLE_CLASS_VIEW);
-
gtk_style_context_get_color (style_context, state, &color);
gdk_cairo_set_source_rgba (cr, &color);
pango_cairo_show_layout (cr, layout);
cairo_destroy (cr);
g_object_unref (layout);
- gtk_style_context_restore (style_context);
-
return surface;
}